home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Dom i biuro / Crimson Editor 3.70 / cedt370r.exe / template / hello world program.c < prev    next >
C/C++ Source or Header  |  2001-10-22  |  126b  |  9 lines

  1. /* basic template file for C */
  2.  
  3. #include <stdio.h>
  4.  
  5. void main(int argc, char * argv[])
  6. {
  7.     printf("hello world\n");
  8. }
  9.